home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / RCS / setjmp.h,v < prev    next >
Encoding:
Text File  |  1989-04-09  |  755 b   |  69 lines

  1. head     1.3;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.3
  10. date     89.04.09.11.33.57;  author jhh;  state Exp;
  11. branches ;
  12. next     1.2;
  13.  
  14. 1.2
  15. date     88.10.04.16.34.39;  author mendel;  state Exp;
  16. branches ;
  17. next     1.1;
  18.  
  19. 1.1
  20. date     88.07.13.17.37.11;  author ouster;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 1.3
  30. log
  31. @changed ifdef of SPUR to spur
  32. @
  33. text
  34. @/*    setjmp.h    4.1    83/05/03    */
  35.  
  36.  
  37. #ifdef spur
  38. typedef int jmp_buf[18];
  39. #else
  40. /*
  41.  * Only 10 words are needed for the VAX, but 15 for the Sun.  Use the
  42.  * larger of the two.
  43.  */
  44.  
  45. typedef int jmp_buf[15];
  46. #endif
  47. @
  48.  
  49.  
  50. 1.2
  51. log
  52. @Made setjmp buffer large to accommodate SPUR local registers.
  53. @
  54. text
  55. @d4 1
  56. a4 1
  57. #ifdef SPUR
  58. @
  59.  
  60.  
  61. 1.1
  62. log
  63. @Initial revision
  64. @
  65. text
  66. @d3 4
  67. d13 1
  68. @
  69.